03d1d1bf8322328ca4efba93d0c39ae71165fff5,ZBLibrary(ADT)/ZBLibrary/src/zuo/biao/library/base/BaseViewBottomWindow.java,BaseViewBottomWindow,onDestroy,#,194

Before Change


	@Override
	protected void onDestroy() {
		data = null;
		if (llBaseViewBottomWindowContainer != null) {
			llBaseViewBottomWindowContainer.removeAllViews();
		}
		if (containerView != null) {
			containerView.onDestroy();

After Change


	@Override
	protected void onDestroy() {
		data = null;
		llBaseViewBottomWindowContainer.removeAllViews();
		if (containerView != null) {
			containerView.onDestroy();
		}